Skip to main content

Assignment 1 Solution

Question 1 Write a program to check whether a number is prime or not. Calculate its time complexity with proper explanation

import java.util.Scanner;

public class Q1 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter a number : ");
int number = scanner.nextInt();

if(isPrime(number)){
System.out.println(number+ " is a Prime Number.");
}else{
System.out.println(number+ " is not a Prime Number.");
}

scanner.close();
}

static boolean isPrime(int num) {
if (num <= 1) {
return false;
}
for (int i = 2; i <= Math.sqrt(num); i++) {
if (num % i == 0) {
return false;
}
}
return true;
}
}

Credit:

Question 2 Write a program to find the binary equivalent of a decimal number. Calculate its time complexity

import java.util.Scanner;

public class Q2 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter a number : ");
int decimal = scanner.nextInt();

System.out.print("The binary of " + decimal + " is: ");
decToBinary(decimal);

scanner.close();
}

static void decToBinary(int decimal) {
int[] binary = new int[40];
int index = 0;

while (decimal > 0) {
binary[index++] = decimal % 2;
decimal /= 2;
}

for (int i = index - 1; i >= 0; i--) {
System.out.print(binary[i]);
}
}
}

Credit:

Question 3 Write a program to find the reverse of a number and find its time complexity

import java.util.Scanner;

public class Q3 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter a number : ");
int number = scanner.nextInt();

int reversedNumber = reverse(number);
System.out.println("Reverse of " + number + " is " + reversedNumber);

scanner.close();
}

static int reverse(int number) {
int reversedNumber = 0;
while (number != 0) {
int digit = number % 10;
reversedNumber = reversedNumber * 10 + digit;
number /= 10;
}
return reversedNumber;
}
}

Credit:

Question 4 Write a program to search an element using binary search and calculate its time complexity

import java.util.Arrays;
import java.util.Scanner;

public class Q4 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size : ");
int size = scanner.nextInt();

int[] arr = new int[size];
System.out.print("Enter array elements : ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}

Arrays.sort(arr);

System.out.print("Enter the element to be searched : ");
int key = scanner.nextInt();

int index = binarySearch(arr, size, key);

if(index != -1){
System.out.println("Element " + key + " found at index : " + index);
} else {
System.out.println("Element not found.");
}

scanner.close();
}

public static int binarySearch(int[] arr, int size, int key) {
int low = 0;
int high = size - 1;
int mid;

while (low <= high) {
mid = (low + high) / 2;

if (arr[mid] == key) {
return mid;
} else if (arr[mid] < key) {
low = mid + 1;
} else {
high = mid - 1;
}
}

return -1;
}
}

Credit:

Question 5 Given an array, write a program to rotate its element K numbers of times. Explain its time complexity

import java.util.Scanner;

public class Q5 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size : ");
int size = scanner.nextInt();

int[] arr = new int[size];
System.out.print("Enter array elements : ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}

System.out.print("Enter k : ");
int k = scanner.nextInt();

rotateArray(arr, k);

scanner.close();
}

static void rotateArray(int[] arr, int k) {
int temp;
for (int j = 1; j <= k; j++) {
temp = arr[0];

for (int i = 0; i < arr.length - 1; i++) {
arr[i] = arr[i + 1];
}

arr[arr.length - 1] = temp;
}

for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
}
}

Credit:

Question 6 Given an array of positive and negative integers, write a program to find a contiguous subarray whose sum of elements is maximum

import java.util.Scanner;

public class Q6 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size : ");
int size = scanner.nextInt();

int[] arr = new int[size];
System.out.print("Enter array elements : ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}

printArray(arr);

maxSubarray(arr);

scanner.close();
}

static void printArray(int[] arr) {
System.out.print("The array is : ");
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}

static void maxSubarray(int[] nums) {
int sum = 0;
int max = nums[0];

for (int i = 0; i < nums.length; i++) {
sum += nums[i];
if (sum > max)
max = sum;
if (sum < 0)
sum = 0;
}

System.out.println("The maximum subarray sum is: " + max);
}
}

Credit:

Question 7 Given an array, write a program to arrange its elements in waveform such that odd elements are lesser than its neighboring even elements

import java.util.Scanner;

public class Q7 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size : ");
int size = scanner.nextInt();

int[] arr = new int[size];
System.out.print("Enter array elements : ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}

printArray(arr);

waveform(arr);

scanner.close();
}

static void printArray(int[] arr) {
System.out.print("The array is : ");
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}

static void swap(int[] arr, int a, int b) {
int temp = arr[a];
arr[a] = arr[b];
arr[b] = temp;
}

public static void waveform(int[] arr) {
for (int i = 0; i < arr.length - 1; i += 2) {
if (i > 0 && arr[i - 1] > arr[i]) {
swap(arr, i - 1, i);
}
if (arr[i] < arr[i + 1]) {
swap(arr, i, i + 1);
}
}
System.out.println("Waveform array is:");
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}
}

Credit:

Question 8 Given an array of size N, containing elements from 0 to N-1. All values from 0 to N-1 are present in array and if they are not there than -1 is there to take place. Write a program to arrange values of the array so that value i is stored at arr[i]

import java.util.Scanner;

public class Q8 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size : ");
int size = scanner.nextInt();

int[] arr = new int[size];
System.out.print("Enter array elements : ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}

indexArray(arr);

scanner.close();
}

static void indexArray(int[] arr) {
for (int i = 0; i < arr.length; i++) {
if (i != arr[i]) {
for (int j = i; j < arr.length; j++) {
if (i == arr[j]) {
swap(arr, i, j);
break;
}
}
if (i != arr[i]) {
for (int j = i; j < arr.length; j++) {
if (arr[j] == -1) {
swap(arr, i, j);
break;
}
}
}
}
}
for (int i = 0; i < arr.length; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}

static void swap(int[] arr, int a, int b) {
int temp = arr[a];
arr[a] = arr[b];
arr[b] = temp;
}
}

Credit:

Question 9 Given an unsorted array, find the smallest positive number missing in the array

import java.util.*;

public class Q9 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter array size: ");
int size = scanner.nextInt();

int[] arr = new int[size];
System.out.println("Enter array elements: ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}

Arrays.sort(arr);

findMissingNumber(arr);

scanner.close();
}

static void findMissingNumber(int arr[]) {
int missingNumber = 0;
int containsOne = 0;

for (int i = 0; i < arr.length - 1; i++) {
if ((arr[0] > 0) && (arr[0] != 1)) {
missingNumber = 1;
break;
} else if ((arr[i + 1] != arr[i] + 1) && (arr[i] + 1 > 0)) {
missingNumber = arr[i] + 1;
break;
}
if (arr[i] == 1)
containsOne = 1;
}

if ((missingNumber != 0) && (containsOne != 1))
System.out.println("Smallest positive missing number = 1");
else if (missingNumber != 0)
System.out.println("Smallest positive missing number = " + missingNumber);
else
System.out.println("No missing number");
}
}

Credit:

Question 10 Given a sorted array, rearrange it in maximum-minimum form

import java.util.*;

public class Q10 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size: ");
int size = scanner.nextInt();
int arr[] = new int[size];
System.out.print("Enter array elements: ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}
Arrays.sort(arr);
getMaxMin(arr);
scanner.close();
}

static void getMaxMin(int arr[]) {
int result[] = new int[arr.length];
int start = 0, end = arr.length - 1;
for (int i = 0; i < arr.length; i++) {
if (i % 2 == 0) {
result[i] = arr[end];
end--;
} else {
result[i] = arr[start];
start++;
}
}
for (int i = 0; i < result.length; i++) {
System.out.print(result[i] + " ");
}
}
}

Credit:

Question 11 Given an array you need to find the maximum sum of arr[i]*(i+1) for all elements such that you are allowed to rotate the array.

import java.util.*;

public class Q11 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size: ");
int size = scanner.nextInt();
int arr[] = new int[size];
System.out.print("Enter array elements: ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}
findMaxCircularSum(arr);
scanner.close();
}

static void findMaxCircularSum(int arr[]) {
int c, s = 0, sum;
int circularSums[] = new int[arr.length];
for (int j = 1; j <= arr.length; j++) {
c = arr[0];
sum = 0;
for (int i = 0; i < arr.length - 1; i++) {
arr[i] = arr[i + 1];
}
arr[arr.length - 1] = c;
for (int i = 0; i < arr.length; i++) {
sum = sum + (arr[i] * (i + 1));
}
circularSums[s] = sum;
s++;
}
int max = circularSums[0];
for (int i = 0; i < arr.length; i++) {
if (max < circularSums[i]) {
max = circularSums[i];
}
}
System.out.println("Max = " + max);
}
}

Credit:

Question 12 Given an array arr[], find the maximum distance between indices i and j, such that arr[j] > arr[i]

import java.util.*;

public class Q12 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size: ");
int size = scanner.nextInt();
int arr[] = new int[size];
System.out.print("Enter array elements: ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}
int maxDifference = ArrayIndexMaxDiff(arr, size);
System.out.println("The Maximum Difference is: " + maxDifference);
scanner.close();
}

static int ArrayIndexMaxDiff(int[] arr, int size) {
int maxDiff = -1;
int j;
for (int i = 0; i < size; i++) {
j = size - 1;
while (j > i) {
if (arr[j] > arr[i]) {
maxDiff = Math.max(maxDiff, j - i);
break;
}
j -= 1;
}
}
return maxDiff;
}
}

Credit:

Question 13 Given two arrays in increasing order you need to find the maximum sum by choosing a few consecutive elements from one array and then a few elements from another array. The element switching can happen at transition points only when the element value is the same in both arrays

public class Q13 {
public static void main(String[] args) {
int arr1[] = {12, 13, 18, 20, 22, 26, 70};
int arr2[] = {11, 15, 18, 19, 20, 26, 30, 31};
findMaxPathSum(arr1, arr2);
}

static void findMaxPathSum(int arr1[], int arr2[]) {
int i = 0, j = 0, result = 0, sum1 = 0, sum2 = 0;

while (i < arr1.length && j < arr2.length) {
if (arr1[i] < arr2[j]) {
sum1 += arr1[i];
i++;
} else if (arr1[i] > arr2[j]) {
sum2 += arr2[j];
j++;
} else {
result += Math.max(sum1, sum2);
result += arr1[i];
sum1 = 0;
sum2 = 0;
i++;
j++;
}
}

while (i < arr1.length) {
sum1 += arr1[i];
i++;
}
while (j < arr2.length) {
sum2 += arr2[j];
j++;
}

result += Math.max(sum1, sum2);
System.out.println("Max Path sum = " + result);
}
}

Credit:

Question 14 Write a recursive algorithm to solve the Tower of Hanoi problem

import java.util.Scanner;

public class Q14 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the number of discs: ");
int num = scanner.nextInt();
System.out.println("The sequence of moves is:");
towerOfHanoi(num, 'A', 'C', 'B');
scanner.close();
}

public static void towerOfHanoi(int numberOfDiscs, char source, char destination, char auxiliary) {
if (numberOfDiscs < 1) {
return;
}
towerOfHanoi(numberOfDiscs - 1, source, auxiliary, destination);
System.out.println("Move disk " + numberOfDiscs + " from peg " + source + " to peg " + destination);
towerOfHanoi(numberOfDiscs - 1, auxiliary, destination, source);
}
}

Credit:

Question 15 Write a recursive function to find the GCD of two numbers. Write the recurrence of the function and solve it for a solution

import java.util.Scanner;

public class Q15 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter A: ");
int a = scanner.nextInt();
System.out.println("Enter B: ");
int b = scanner.nextInt();
System.out.print("The GCD of " + a + " and " + b + " is: " + calculateGCD(a, b));
scanner.close();
}

public static int calculateGCD(int a, int b) {
if (a < b) {
return calculateGCD(b, a);
}
if (a % b == 0) {
return b;
}
return calculateGCD(b, a % b);
}
}

Credit:

Question 16 Write a program to find all permutations of an integer list recursively

import java.util.Scanner;

public class Q16 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size: ");
int size = scanner.nextInt();
int arr[] = new int[size];
System.out.print("Enter array elements: ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}
System.out.println("All the permutations of the array are:");
permutation(arr, 0, size);
scanner.close();
}

public static void permutation(int[] arr, int start, int length) {
if (length == start) {
printArray(arr, length);
return;
}
for (int i = start; i < length; i++) {
swap(arr, start, i);
permutation(arr, start + 1, length);
swap(arr, start, i);
}
}

static void swap(int[] arr, int i, int j) {
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}

static void printArray(int[] arr, int length) {
for (int i = 0; i < length; i++) {
System.out.print(arr[i] + " ");
}
System.out.println();
}
}

Credit:

Question 17 Write a recursive function to search an element using binary search. Analyze its time complexity

import java.util.*;

public class Q17 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter array size: ");
int size = scanner.nextInt();
int arr[] = new int[size];
System.out.print("Enter array elements: ");
for (int i = 0; i < arr.length; i++) {
arr[i] = scanner.nextInt();
}
Arrays.sort(arr);
System.out.print("Enter the element to be searched: ");
int key = scanner.nextInt();
int index = binarySearchRecursive(arr, 0, size - 1, key);
if (index != -1) {
System.out.println("Element " + key + " found at index: " + index);
} else {
System.out.println("Element not found.");
}
scanner.close();
}

public static int binarySearchRecursive(int[] arr, int low, int high, int key) {
if (low > high)
return -1;
int mid = (low + high) / 2;
if (arr[mid] == key) {
return mid;
} else if (arr[mid] < key) {
return binarySearchRecursive(arr, mid + 1, high, key);
} else {
return binarySearchRecursive(arr, low, mid - 1, key);
}
}
}

Credit: